Anillo 3 - Original

An interactive fiction by Mel Hython (2009) - the Inform 7 source text

Home page

Contents
Previous
Next

Complete text
Section 2 - El arbusto (que no se distingue sin más)

A arbusto is a bag of tricks. It is transparent and fixed in place. The description of arbusto is "[if the number of entries of hidden objects of arbusto is 1]No es más que un arbusto más del pantano, pero estás seguro que los destellos salían de él.[otherwise]Es el arbusto en el que estaba escondida la cruz.[end if]".
The hidden objects of arbusto are {cruz}.

A destello is part of arbusto.

Understand "destellos" as destello.

Instead of examining or searching destello when cruz is listed in hidden objects of arbusto:
    try searching arbusto.

Instead of examining or searching destello when cruz is not listed in hidden objects of arbusto:
    try examining cruz.

Before taking cruz when the destello is part of arbusto:
    remove destello from play.

Instead of doing anything with destello:
    say "Eso no se puede hacer.".

The found phrase of arbusto is "¡Vaya! Tras buscar concienzudamente entre sus ramas encuentras [a second noun].".

Every turn when the location is Pantano3:
    if the arbusto is not in Pantano3:
        if a random chance of 1 in 4 succeeds:
            say "Te ha parecido ver por el rabillo del ojo que uno de los arbustos de este lugar ha emitido un destello de luz.";
            move arbusto to Pantano3.

Understand "matorral" or "arbustos" as arbusto when the arbusto is visible.
Understand "busca [ramas] [a thing]" as searching when arbusto is visible.

After going to Pantano3:
    if uvturn of Pantano3 is not 0 and arbusto is visible:
        let t be turn count;
        decrease t by uvturn of Pantano3;
        if PasosEnCentral is greater than t:
            say "[one of]Uhm... ¿estás andando en círculos?[or]¡Otra vez este arbusto? Realmente estás perdido en este pantano.[or]¿Es posible que estés dando vueltas y regresando una y otra vez al arbusto?[at random]";
    change uvturn of Pantano3 to turn count;
    continue the action.